home *** CD-ROM | disk | FTP | other *** search
/ Resource for Source: C/C++ / Resource for Source - C-C++.iso / codelib8 / v_10_02 / 1002096b < prev    next >
Encoding:
Text File  |  1995-11-01  |  200 b   |  14 lines

  1.  
  2.  
  3. /*
  4.         LISTER: a subfunction to link to recursive main for
  5.                 listing wildcard file matches.
  6. */
  7.  
  8. #include <stdio.h>
  9.  
  10. void subfunc(char *path)
  11. {
  12. printf("\n%s", path);
  13. }
  14.